home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / Bookmark.subproj / eTBookmarkUI.h < prev    next >
Encoding:
Text File  |  1994-11-13  |  1.1 KB  |  41 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTBookmarkUI.h 
  3. //    SUMMARY:    Interface for the inspector of Bookmarks
  4. //    SUPERCLASS:    Object
  5. //    INTERFACE:    eTBookmarkUI.nib
  6. //    PROTOCOLS:    <Inspectable>
  7. //    AUTHOR:        Rohit Khare
  8. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //  DESCRIPTION
  11. //        You name it.
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //    HISTORY
  14. //    11/13/94:    Modified to use a storage for sorted bookmark lists.
  15. //    05/08/94:    Created. First actual implementation.
  16. ///////////////////////////////////////////////////////////////////////////////
  17.  
  18. #import "Bookmark.h"
  19.  
  20. @interface eTBookmarkUI:Object <Inspectable>
  21. {
  22.     id    contentPanel;
  23.     id    contentView;
  24.     id    theBookmark;
  25.     id    browser;
  26.     id    well;
  27.     id    conditionField;
  28.     id    titleField;
  29.     id    idField;
  30.     Storage *bmStore;
  31.     long docID;
  32. }
  33.  
  34. + new;
  35. - setBookmark:newBookmark inDoc:(long)newDocID;
  36. - load;
  37. - resetTitle:sender;
  38. - resetCondition:sender;
  39. - selectBookmark:sender;
  40. @end
  41.